home *** CD-ROM | disk | FTP | other *** search
/ Visual Basic Source Code / Visual Basic Source Code.iso / vbsource / ruthie / openingf.frm < prev    next >
Text File  |  1995-05-08  |  4KB  |  109 lines

  1. VERSION 2.00
  2. Begin Form OpeningForm 
  3.    Caption         =   "RuthieWare"
  4.    ClientHeight    =   3540
  5.    ClientLeft      =   4500
  6.    ClientTop       =   3915
  7.    ClientWidth     =   6030
  8.    Height          =   3945
  9.    Left            =   4440
  10.    LinkMode        =   1  'Source
  11.    LinkTopic       =   "Form2"
  12.    MaxButton       =   0   'False
  13.    MinButton       =   0   'False
  14.    ScaleHeight     =   3540
  15.    ScaleWidth      =   6030
  16.    Top             =   3570
  17.    Width           =   6150
  18.    Begin PictureBox Picture1 
  19.       Height          =   3255
  20.       Left            =   120
  21.       ScaleHeight     =   3225
  22.       ScaleWidth      =   5745
  23.       TabIndex        =   0
  24.       Top             =   120
  25.       Width           =   5775
  26.       Begin CommandButton Quit 
  27.          Caption         =   "Quit"
  28.          Height          =   375
  29.          Left            =   3960
  30.          TabIndex        =   5
  31.          Top             =   2640
  32.          Width           =   1575
  33.       End
  34.       Begin CommandButton About 
  35.          Caption         =   "About Ruthie"
  36.          Height          =   375
  37.          Left            =   2040
  38.          TabIndex        =   6
  39.          Top             =   2640
  40.          Width           =   1695
  41.       End
  42.       Begin CommandButton Start 
  43.          Caption         =   "Start"
  44.          Height          =   375
  45.          Left            =   240
  46.          TabIndex        =   4
  47.          Top             =   2640
  48.          Width           =   1575
  49.       End
  50.       Begin TextBox Text2 
  51.          BorderStyle     =   0  'None
  52.          Enabled         =   0   'False
  53.          Height          =   1095
  54.          Left            =   240
  55.          MultiLine       =   -1  'True
  56.          TabIndex        =   3
  57.          Text            =   "Ruthie! helps develop simple mouse skills. There are several levels of play. Early levels focus on finding an object with the mouse. Higher levels involve drag-and-drop skills, as well as matching shapes, colors, and letters."
  58.          Top             =   1440
  59.          Width           =   5295
  60.       End
  61.       Begin TextBox Text1 
  62.          BorderStyle     =   0  'None
  63.          Enabled         =   0   'False
  64.          Height          =   735
  65.          Left            =   2280
  66.          MultiLine       =   -1  'True
  67.          TabIndex        =   2
  68.          Text            =   "Ruthie!  version 1.3b            Copyright ⌐ 1991 by John Murdoch.  All Rights Reserved."
  69.          Top             =   600
  70.          Width           =   3375
  71.       End
  72.       Begin PictureBox AppPicture 
  73.          BorderStyle     =   0  'None
  74.          Height          =   1215
  75.          Left            =   240
  76.          Picture         =   OPENINGF.FRX:0000
  77.          ScaleHeight     =   1215
  78.          ScaleWidth      =   1815
  79.          TabIndex        =   1
  80.          Top             =   120
  81.          Width           =   1815
  82.       End
  83.    End
  84. End
  85. Sub About_Click ()
  86.     Open2.Show 1    '   Show Open2 as modal form
  87. End Sub
  88.  
  89. Sub AppPicture_Click ()
  90.     OpeningForm.Hide   '   Tuck this puppy away for now
  91.     Ruthie.Show     '   Show them Game 1
  92. End Sub
  93.  
  94. Sub Form_Load ()
  95.     Top = (Screen.Height - Height) / 2  ' This centers the form on the monitor
  96.     Left = (Screen.Width - Width) / 2
  97. End Sub
  98.  
  99. Sub Quit_Click ()
  100.     MsgBox "What? The opening frame wasn't pretty enough for you?", 32, "Leaving So Soon?"
  101.     End
  102. End Sub
  103.  
  104. Sub Start_Click ()
  105.     OpeningForm.Hide   '   Tuck this puppy away for now
  106.     Ruthie.Show     '   Show them Game 1
  107. End Sub
  108.  
  109.